CSS 优先规则5:属性后插有 !important css优先
时间 :
2023-02-24
编辑 :创始人
CSS 优先规则5:属性后插有 !important 的属性拥有最高优先级。若同时插有 !important,则再利用规则 3、4 判断优先级。
例6:
// HTML <div class="father"> <p class="son"></p> </div> // CSS p { background: red !important; } .father .son { background: blue; }